home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / Sample Code Notes (ProDOS) / SCN21Dynamo < prev    next >
Encoding:
Text File  |  1990-06-24  |  2.8 KB  |  64 lines  |  [TEXT/pdos]

  1. Apple II
  2. Sample Code Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6. #21:    Dynamo
  7.  
  8. Version:    3.1                                                     June 1990
  9.  
  10. MPW Components:    App.Builder:
  11.                        App.config
  12.                        Build.a
  13.                        BuildApp.system
  14.                        BuildApp.text
  15.                        Dispatch.a
  16.                        MakeFile
  17.                    BuildApp.Manual
  18.                    BuildApp.Manual.text
  19.                    Dynamo 3.0 Information
  20.                    Dynamo.Includes:
  21.                        Rt.h
  22.                        Rt.macros
  23.                        Sys.equ
  24.                    Dynamo.Sample:
  25.                        App.config
  26.                        BuildApp.text
  27.                        MakeFile
  28.                        Sample.a
  29.                    Libs:
  30.                        Rt.lib
  31.                    Read.Me
  32.                    Rt.a
  33.                    Rt.Lib.Make
  34.                    v3.1 Changes
  35.  
  36. Dynamo is a cross-development package for eight-bit applications.  It includes 
  37. a run-time library that is linked into your application at link time, so the 
  38. amount of RAM taken is no more than necessary.  Dynamo also sports very 
  39. intelligent macros.  Typically, macros are useful for conceptual reasons, but 
  40. they often cost the developer in terms of program size, since they expand in 
  41. place at each occurrence.  The Dynamo macros are different; they try to 
  42. optimize code generation, as well as making calls to the run-time library, so 
  43. the code that does the work is in your application only once.  Using this 
  44. technique, you get the benefit of readability that macros provide, plus the 
  45. compact code size that straight assembly coding provides.
  46. _____________________________________________________________________________
  47.  
  48. The Dynamo package consists of run-time source for the library, an application 
  49. builder and launcher, source for the application builder, and a sample 
  50. application that demonstrates and uses the run-time library via the macros.  
  51. The sample is not designed to show how to write a complete application, but 
  52. rather how to exercise the run-time library and demonstrate all of the calls 
  53. and uses.  A machine-readable manual describing the application builder and 
  54. the Dynamo macros is included with this package.
  55.  
  56. If you are interested in using Dynamo for Apple II development, especially 
  57. with graphics, DTS has substantially more information and samples available.  
  58. You can write for more information at the address listed in Sample Code Note 
  59. #0.  Please state specifically if you are interested in graphics development 
  60. with Dynamo.
  61.  
  62. MPW IIGS users need MPW v.3.0, MPW IIGS Tools v.1.1, and the MPW IIGS Assembler 
  63. v.1.0 or later to use Dynamo.
  64.